home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-06-26 | 393 b | 23 lines | [TEXT/CWIE] |
-
- // mail <chelly@eden.com> or surf http://www.eden.com/~chelly for feedback
- // free source code - do whatever you like with it
-
- // uniform access to offscreen pixels on both mac and windows
-
- #ifndef GEOffscreen_H
- #define GEOffscreen_H
-
- #include "common.h"
-
- struct GEOffscreenInfo
- {
- char* baseAddr;
- int rowBytes;
- Rect bounds;
- };
-
- GEOffscreenInfo GetGEOffscreenInfo( GWorldPtr );
-
- #endif
-
-